home *** CD-ROM | disk | FTP | other *** search
/ World of Video / World of Video.iso / gfxprograms / 3dprograms / rayshade-4.0 / libextra / myexit.c < prev    next >
C/C++ Source or Header  |  1995-02-13  |  114b  |  10 lines

  1. extern volatile void exit(int);
  2.  
  3. void
  4. myexit(int status)
  5. {
  6.   close_yyin();
  7.   RestorePriority();
  8.   exit(status);
  9. }
  10.